home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / basemod.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.3 KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef BaseModH
  7. #define BaseModH
  8. //---------------------------------------------------------------------------
  9. #include <Windows.hpp>
  10. #include <Messages.hpp>
  11. #include <Sysutils.hpp>
  12. #include <Classes.hpp>
  13. #include <Graphics.hpp>
  14. #include <Controls.hpp>
  15. #include <Forms.hpp>
  16. #include <Dialogs.hpp>
  17. #include <ExtCtrls.hpp>
  18. #include <StdCtrls.hpp>
  19. //---------------------------------------------------------------------------
  20. class TBase : public TForm
  21. {
  22. __published:
  23.     TPanel *Panel1;
  24.     TPanel *Panel2;
  25.     TLabel *Label1;
  26.     TButton *Button1;
  27.     void __fastcall Button1Click(TObject *Sender);
  28. private:        // private user declarations
  29. public:         // public user declarations
  30.     virtual __fastcall TBase(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TBase *Base;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.